Skip to main content

Paste

Pastes the contents of the clipboard to the current sheet.

Syntax

expression.Paste(destination);

expression - A variable that represents a ApiWorksheet class.

Parameters

NameRequired/OptionalData typeDefaultDescription
destinationOptionalApiRangeThe cell range where the clipboard contents should be pasted. If this argument is omitted, the current selection is used.

Returns

This method doesn't return any data.

Example

This example shows how to paste date from clipboard.

var oWorksheet = Api.GetActiveSheet();
oWorksheet.Paste();